DirectoryEntryAttributes()
Syntax
Attribute = DirectoryEntryAttributes()
Beschreibung
Gibt die Attribute des aktuellen Eintrags im Verzeichnis zurⁿck, das gerade mit den ExamineDirectory() und NextDirectoryEntry() Befehlen untersucht wird. Die Attribute sind eine Kombination der folgenden Werte:
#PB_FileSystem_Hidden: Datei ist versteckt
#PB_FileSystem_Archive: Datei wurde archiviert und seit dem letzten Mal nicht geΣndert
#PB_FileSystem_Compressed: Datei ist gepackt
#PB_FileSystem_Normal: Normale Attribute
#PB_FileSystem_ReadOnly: Datei ist im "Read-only" Modus (nur lesbar)
#PB_FileSystem_System: Datei ist eine Systemdatei
Um zu ⁿberprⁿfen, ob bei der untersuchten Datei ein Attribut gesetzt ist, benutzen Sie '&' (logisches AND) und die Attribut-Konstante:[...] FileAttributes = DirectoryEntryAttributes() If FileAttributes & #PB_FileSystem_Hidden Debug "Die Datei ist versteckt!" EndIf
Unterstⁿtzte OS
Windows, AmigaOS, Linux